home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue56 / Splat / widereg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-01-31  |  228 b   |  19 lines

  1. unit WideReg;
  2.  
  3. interface
  4.  
  5. // Register the TWideLabel component.
  6.  
  7. procedure Register;
  8.  
  9. implementation
  10.  
  11. uses Classes, WideLabel;
  12.  
  13. procedure Register;
  14. begin
  15.   RegisterComponents('Splat', [TWideLabel]);
  16. end;
  17.  
  18. end.
  19.